home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / include / library / ixemul.h next >
C/C++ Source or Header  |  1994-07-05  |  7KB  |  256 lines

  1. /*
  2.  *  This file is part of ixemul.library for the Amiga.
  3.  *  Copyright (C) 1991, 1992  Markus M. Wild
  4.  *  Portions Copyright (C) 1994 Rafael W. Luebbert
  5.  *
  6.  *  This library is free software; you can redistribute it and/or
  7.  *  modify it under the terms of the GNU Library General Public
  8.  *  License as published by the Free Software Foundation; either
  9.  *  version 2 of the License, or (at your option) any later version.
  10.  *
  11.  *  This library is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  *  Library General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU Library General Public
  17.  *  License along with this library; if not, write to the Free
  18.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  *  $Id: ixemul.h,v 1.3 1992/10/20 16:32:33 mwild Exp $
  21.  *
  22.  *  $Log: ixemul.h,v $
  23.  *  Revision 1.3  1992/10/20  16:32:33  mwild
  24.  *  *** empty log message ***
  25.  *
  26.  *  Revision 1.2  1992/07/04  19:25:26  mwild
  27.  *  change __rwport to reflect the current state of the (now global) async port
  28.  *
  29.  * Revision 1.1  1992/05/14  20:36:14  mwild
  30.  * Initial revision
  31.  *
  32.  */
  33.  
  34. #ifdef START
  35. #include "version.h"
  36.  
  37. /* definitions for the assembler startup file */
  38.  
  39. /* when I've REALLY lots of free time, I'll rewrite header files, but now... */
  40.  
  41. /* amazingly works, contains only defines ;-)) */
  42. #include <exec/alerts.h>
  43.  
  44. #define _LVOOpenLibrary        -0x228
  45. #define _LVOCloseLibrary     -0x19e
  46. #define _LVOAlert        -0x6c
  47. #define _LVOFreeMem        -0xd2
  48. #define _LVORemove        -0xfc
  49.  
  50. #define RTC_MATCHWORD    0x4afc
  51. #define RTF_AUTOINIT    (1<<7)
  52.  
  53. #define LIBF_CHANGED    (1<<1)
  54. #define LIBF_SUMUSED    (1<<2)
  55. /* seems there is an assembler bug in expression evaluation here.. */
  56. #define LIBF_CHANGED_SUMUSED 0x6
  57. #define LIBF_DELEXP    (1<<3)
  58. #define LIBB_DELEXP    3
  59.  
  60. #define LN_TYPE        8
  61. #define LN_NAME        10
  62. #define NT_LIBRARY    9
  63. #define MP_FLAGS    14
  64. #define PA_IGNORE    2
  65.  
  66. #define LIST_SIZEOF    14
  67.  
  68. #define THISTASK    276
  69.  
  70. #define INITBYTE(field,val)    .word 0xe000; .word (field); .byte (val); .byte 0
  71. #define INITWORD(field,val)    .word 0xd000; .word (field); .word (val)
  72. #define INITLONG(field,val)    .word 0xc000; .word (field); .long (val)
  73.  
  74. /*
  75.  * our library base.. 
  76.  */
  77.  
  78. /* struct library */
  79. #define    IXBASE_NODE    0
  80. #define IXBASE_FLAGS    14
  81. #define IXBASE_NEGSIZE    16
  82. #define IXBASE_POSSIZE    18
  83. #define IXBASE_VERSION    20
  84. #define IXBASE_REVISION    22
  85. #define IXBASE_IDSTRING    24
  86. #define IXBASE_SUM    28
  87. #define IXBASE_OPENCNT    32
  88. #define IXBASE_LIBRARY    34    /* size of library */
  89.  
  90. /* custom part */
  91. #define IXBASE_MYFLAGS        (IXBASE_LIBRARY + 0)
  92. #define IXBASE_SYSLIB        (IXBASE_MYFLAGS + 2)
  93. #define IXBASE_SEGLIST        (IXBASE_SYSLIB  + 4)
  94. #define IXBASE_C_PRIVATE    (IXBASE_SEGLIST + 4)
  95. /* get size of C_PRIVATE with print_base_size.c */
  96. #define IXBASE_SIZEOF        (IXBASE_C_PRIVATE + 490)
  97.  
  98. #else  /* C-part */
  99.  
  100. #include <exec/types.h>
  101. #include <exec/libraries.h>
  102. #include <exec/execbase.h>
  103. #include <exec/ports.h>
  104. #include <libraries/dosextens.h>
  105. #include <intuition/intuition.h>
  106.  
  107. #include <sys/types.h>
  108. #ifdef KERNEL
  109. #define _INTERNAL_FILE
  110. #endif
  111. #include <sys/file.h>
  112. #include <sys/param.h>
  113. #include <packets.h>
  114. #include <sys/syscall.h>
  115. #include <signal.h>
  116. #ifdef KERNEL
  117. #include <user.h>
  118. #endif
  119. #include <errno.h>
  120.  
  121. /* configure this to the number of hash queues you like, 
  122.  * use a prime number !!
  123.  */
  124. #define IX_NUM_SLEEP_QUEUES    31
  125.  
  126. struct ixemul_base {
  127.   struct Library    ix_lib;
  128.   unsigned char        ix_myflags;
  129.   unsigned char        ix_pad;
  130.   struct ExecBase*    ix_sys_base;
  131.   BPTR            ix_seg_list;
  132.  
  133.   /* needed library bases */
  134.   struct Library    *ix_dos_base;
  135.   struct ArpBase    *ix_arp_base;
  136.   struct IntuitionBase    *ix_intui_base;
  137.   struct GfxBase    *ix_gfx_base;
  138.   struct MathIeeeSingBasBase    *ix_ms_base;
  139.   void            *ix_libs;    /* was ix_mst_base */
  140.   struct MathIeeeDoubBasBase    *ix_md_base;
  141.   struct MathIeeeDoubTransBase    *ix_mdt_base;
  142.  
  143.  
  144.   /* the global file table with current size */
  145.   struct file        *ix_file_tab;
  146.   struct file        *ix_fileNFILE;
  147.   struct file        *ix_lastf;
  148.  
  149.   /* size of start of red zone from bottom of stack */
  150.   int            ix_red_zone_size;
  151.  
  152.   struct SignalSemaphore ix_semaph;
  153.   int            ix_membuf_limit;
  154.   
  155.   /* multiplier for id_BytesPerBlock to get to st_blksize, default 64 */
  156.   int            ix_fs_buf_factor;
  157.  
  158.   int            :25,
  159.               ix_ignore_global_env:1,
  160.               ix_disable_fibcache:1,
  161.               ix_translate_dots:1,
  162.               ix_watch_stack:1,
  163.             ix_force_translation:1,
  164.               ix_translate_symlinks:1,
  165.             ix_translate_slash:1;
  166.  
  167.   struct MinList    ix_sleep_queues [IX_NUM_SLEEP_QUEUES];
  168.  
  169.   struct MinList    ix_socket_list;
  170. };
  171.  
  172.  
  173. /* this is the only prototype of library functions, that are really used inside
  174.  * the library. (So a user can patch a function, and the library will use
  175.  * the new entry, and not a hard compiled address */
  176. #if 0
  177. int syscall (enum _syscall_ vector, ...);
  178. #else
  179. /* now that gcc can deal with varargs-macros, this can be inlined! */
  180. #define syscall(vec, args...) \
  181.   ({register int (*_sc)()=(void *)(&((char *)ixemulbase)[-((vec)+4)*6]); _sc(args);})
  182. #endif
  183.  
  184. #ifdef KERNEL
  185. extern struct ixemul_base *ixemulbase;
  186. extern struct user *curproc;
  187. #define ix (*ixemulbase)
  188. #if 0
  189. #define u_save (*(struct user *)((*(struct ExecBase **)4)->ThisTask->tc_TrapData))
  190. #define u (*curproc)
  191. #else
  192. #define u_save (*(struct user *)((*(struct ExecBase **)4)->ThisTask->tc_TrapData))
  193. #define u (*(struct user *)((*(struct ExecBase **)4)->ThisTask->tc_TrapData))
  194. #endif
  195.  
  196. static inline u_int get_usp (void) 
  197.   u_int res;
  198.   asm volatile ("movel    usp,%0" : "=a" (res));
  199.   return res;
  200. }
  201.  
  202. static inline void set_usp (u_int new_usp)
  203. {
  204.   asm volatile ("movel  %0,usp" : /* no output */ : "a" (new_usp));
  205. }
  206.  
  207. static inline u_int get_sp (void) 
  208.   u_int res;
  209.   asm volatile ("movel    sp,%0" : "=a" (res));
  210.   return res;
  211. }
  212.  
  213. static inline void set_sp (u_int new_sp)
  214. {
  215.   asm volatile ("movel  %0,sp" : /* no output */ : "a" (new_sp));
  216. }
  217.  
  218. static inline u_short get_sr (void) 
  219.   u_short res;
  220.   asm volatile ("movew    sr,%0" : "=g" (res));
  221.   return res;
  222. }
  223.  
  224. static inline u_int get_fp (void) 
  225.   u_int res;
  226.   asm volatile ("movel    a5,%0" : "=g" (res));
  227.   return res;
  228. }
  229. #define PRIVATE
  230. #include <inline/exec.h>
  231. #undef PRIVATE
  232.  
  233. #define BASE_EXT_DECL
  234. #define BASE_PAR_DECL    
  235. #define BASE_PAR_DECL0    
  236. #define BASE_NAME    ((struct DosLibrary *) ix.ix_dos_base)
  237. #include <inline/dos.h>
  238.  
  239. #define errno (* u.u_errno)
  240. extern struct MsgPort *ix_async_mp;
  241. #define __rwport (ix_async_mp)
  242. #else
  243. #define ix_errno (*((struct user *)(ixbase->ix_sys_base->ThisTask->tc_TrapData))->u_errno)
  244. #endif
  245.  
  246. /* *BLOODY* commododities.h defines IX_VERSION too, so wait for our defines
  247.    to come last, and undef the sucker now!! */
  248. #undef IX_VERSION
  249. #include "version.h"
  250.  
  251. #endif
  252.